Added some sneaky Finnish nibs which had .svn folders but not for the right location...
[adiumx.git] / Plugins / Gaim Service / AILiveJournalService.m
blob8e07524995f3b8648a3405fc833d5fa97020a0c7
1 /* 
2  * Adium is the legal property of its developers, whose names are listed in the copyright file included
3  * with this source distribution.
4  * 
5  * This program is free software; you can redistribute it and/or modify it under the terms of the GNU
6  * General Public License as published by the Free Software Foundation; either version 2 of the License,
7  * or (at your option) any later version.
8  * 
9  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
10  * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
11  * Public License for more details.
12  * 
13  * You should have received a copy of the GNU General Public License along with this program; if not,
14  * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
15  */
17 #import "AILiveJournalService.h"
18 #import "AIGaimLiveJournalAccount.h"
19 #import "ESGaimJabberAccountViewController.h"
21 @implementation AILiveJournalService
23 //Account Creation
24 - (Class)accountClass {
25         return [AIGaimLiveJournalAccount class];
29 - (AIAccountViewController *)accountViewController{
30     return [ESGaimJabberAccountViewController accountViewController];
33 //Service Description
34 - (NSString *)serviceCodeUniqueID{
35         return @"libgaim-jabber-livejournal";
38 - (NSString *)serviceID{
39         return @"LiveJournal";
42 - (NSString *)shortDescription{
43         return @"LiveJournal";
46 - (NSString *)longDescription{
47         return @"LiveJournal";
50 - (NSCharacterSet *)ignoredCharacters{
51         return [NSCharacterSet characterSetWithCharactersInString:@" "];
54 - (BOOL)caseSensitive{
55         return NO;
58 - (AIServiceImportance)serviceImportance{
59         return AIServiceSecondary;
62 /*!
63  * @brief Placeholder string for the UID field
64  */
65 - (NSString *)UIDPlaceholder
67         return AILocalizedString(@"username@livejournal.com","Sample name and server for new livejournal accounts");
70 - (NSString *)userNameLabel{
71     return AILocalizedString(@"LiveJournal ID",nil); //Jabber ID
74 @end